2015-08-28DB.txt 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. --数码表
  2. IF EXISTS (SELECT TABLE_NAME FROM INFORMATION_SCHEMA.VIEWS WHERE TABLE_NAME = N'BView_DoorCityTotakePieceHairPiece')
  3. BEGIN
  4. DROP VIEW [dbo].BView_DoorCityTotakePieceHairPiece
  5. END
  6. GO
  7. SET ANSI_NULLS ON
  8. GO
  9. SET QUOTED_IDENTIFIER ON
  10. GO
  11. IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[BView_DoorCityTotakePieceHairPiece]'))
  12. EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[BView_DoorCityTotakePieceHairPiece]
  13. AS
  14. SELECT
  15. ID, OPlist_ViceNumber, OPlist_ProdName AS 商品名称, OPlist_ProdQuantity AS 数量, dbo.fn_CheckIsExpedited(OPlist_IsExpedited) AS 加急, OPlist_SendStatus, OPlist_SendVendor AS 发出,
  16. dbo.fn_CheckDateTimeReturn_Date(dbo.fn_CheckDateTime(OPlist_SendTime)) + ''/'' + dbo.fn_CheckUserIDGetUserName(OPlist_SendName) AS 发出日期, OPlist_SendName AS OPlist_SendNameCode,
  17. dbo.fn_CheckProductReworkStatus(OPlist_ReworkStatus) + CASE [OPlist_ReworkRemark] WHEN '''' THEN '''' ELSE ''['' + [OPlist_ReworkRemark] + '']'' END AS 返工,
  18. case when OPlist_ReworQuantity is null then '''' else case when OPlist_ReworQuantity = 0 then '''' else cast(OPlist_ReworQuantity as varchar(10)) end end AS 返工数量,
  19. dbo.fn_CheckDateTimeReturn_Date(dbo.fn_CheckDateTime(OPlist_ReworkTime)) + ''/'' + dbo.fn_CheckUserIDGetUserName(OPlist_ReworName) AS 返工日期,
  20. OPlist_ReworName AS OPlist_ReworNameCode, OPlist_CompletedStatus, dbo.fn_CheckProductCompletedStatus(OPlist_CompletedStatus) AS 完成,
  21. --OPlist_CompletedQuantity AS 完成数量,
  22. case when OPlist_CompletedQuantity is null then '''' else case when OPlist_CompletedQuantity = 0 then '''' else cast(OPlist_CompletedQuantity as varchar(10)) end end AS 完成数量,
  23. dbo.fn_CheckDateTimeReturn_Date(dbo.fn_CheckDateTime(OPlist_CompletedTime)) + ''/'' + dbo.fn_CheckUserIDGetUserName(OPlist_CompletedName) AS 完成日期,
  24. OPlist_CompletedName AS OPlist_CompletedNameCode, dbo.fn_CheckTakePiecesStatus(OPlist_PickupStatus) AS 取走,
  25. --OPlist_PickupQuantity AS 取件数量,
  26. case when OPlist_PickupQuantity is null then '''' else case when OPlist_PickupQuantity = 0 then '''' else cast(OPlist_PickupQuantity as varchar(10)) end end AS 取走数量,
  27. dbo.fn_CheckDateTimeReturn_Date(dbo.fn_CheckDateTime(OPlist_PickupTime)) + ''/'' + dbo.fn_CheckUserIDGetUserName(OPlist_PickupName) AS 取走日期,
  28. OPlist_PickupName AS OPlist_PickupNameCode
  29. FROM dbo.tb_ErpOrderProductList
  30. WHERE (OPlist_Type = ''2'')
  31. '
  32. GO
  33. ---订单商品表
  34. if not exists
  35. (select * from syscolumns where id=object_id('tb_ErpOrderProductList') and name='OPlist_PickupQuantity')
  36. begin
  37. alter table tb_ErpOrderProductList add OPlist_PickupQuantity int Null
  38. end
  39. IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_Description' , N'SCHEMA',N'dbo', N'TABLE',N'tb_ErpOrderProductList', N'COLUMN',N'OPlist_PickupQuantity'))
  40. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'取件数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpOrderProductList', @level2type=N'COLUMN',@level2name=N'OPlist_PickupQuantity'
  41. GO
  42. if not exists
  43. (select * from syscolumns where id=object_id('tb_ErpOrderProductList') and name='OPlist_ReworQuantity')
  44. begin
  45. alter table tb_ErpOrderProductList add OPlist_ReworQuantity int Null
  46. end
  47. IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_Description' , N'SCHEMA',N'dbo', N'TABLE',N'tb_ErpOrderProductList', N'COLUMN',N'OPlist_ReworQuantity'))
  48. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'返工数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpOrderProductList', @level2type=N'COLUMN',@level2name=N'OPlist_ReworQuantity'
  49. GO
  50. if not exists
  51. (select * from syscolumns where id=object_id('tb_ErpOrderProductList') and name='OPlist_CompletedQuantity')
  52. begin
  53. alter table tb_ErpOrderProductList add OPlist_CompletedQuantity int Null
  54. end
  55. IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_Description' , N'SCHEMA',N'dbo', N'TABLE',N'tb_ErpOrderProductList', N'COLUMN',N'OPlist_CompletedQuantity'))
  56. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'完成数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpOrderProductList', @level2type=N'COLUMN',@level2name=N'OPlist_CompletedQuantity'
  57. GO
  58. ----摄控本(拍摄客人)
  59. IF EXISTS (SELECT TABLE_NAME FROM INFORMATION_SCHEMA.VIEWS WHERE TABLE_NAME = N'BView_CameraControlBookMainPhotographed')
  60. BEGIN
  61. DROP VIEW [dbo].BView_CameraControlBookMainPhotographed
  62. END
  63. GO
  64. SET ANSI_NULLS ON
  65. GO
  66. SET QUOTED_IDENTIFIER ON
  67. GO
  68. IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[BView_CameraControlBookMainPhotographed]'))
  69. EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[BView_CameraControlBookMainPhotographed]
  70. AS
  71. SELECT tb_ErpOrder.ID,
  72. dbo.tb_ErpOrder.Ord_DividedShop,
  73. Ord_Type,
  74. dbo.tb_ErpOrdersPhotography.ID AS VID,
  75. dbo.tb_ErpOrder.Ord_Number,
  76. dbo.tb_ErpOrderDigital.Ordv_ViceNumber,
  77. CASE [Ord_SinceOrderNumber] WHEN '''' THEN Ord_Number ELSE Ord_SinceOrderNumber END AS 订单号,
  78. dbo.fn_CheckOrderType(dbo.tb_ErpOrder.Ord_Type) AS 订单类型,
  79. Cus_Name AS 客户姓名,
  80. Cus_Sex_cs AS 客户性别,
  81. Cus_Telephone AS 客户电话,
  82. dbo.fn_CheckDateTimeReturn_Date(dbo.fn_CheckDateTime(dbo.fn_ConvertDate(GregorianCalendar_DayForMarriage))) AS 婚期,
  83. (select stuff((select '','' + dbo.fn_CheckUserIDGetUserName( OrdPe_OrdersPerson) from tb_ErpOrdersPerson where OrdPe_OrderNumber=Ord_Number for xml path('''')),1,1,'''')) as 接单人,
  84. (Ord_SeriesPrice - (Case when (select sum(Pay_AmountOf) from dbo.tb_ErpPayment where Pay_OrdNumber =Ord_Number and Pay_Category in (''全款'',''后期收款'',''预约收款'',''预约补款'')) is null then 0 else (select sum(Pay_AmountOf) from dbo.tb_ErpPayment where Pay_OrdNumber =Ord_Number and Pay_Category in (''全款'',''后期收款'',''预约收款'',''预约补款'')) end) + (Select sum(Plu_Amount) as Plu_Amount from tb_ErpPlusPickItems where Plu_OrdNumber = Ord_Number)) AS 欠款,
  85. dbo.tb_ErpOrder.Ord_SeriesName AS 套系名称,
  86. dbo.tb_ErpOrder.Ord_SeriesPrice AS 套系价格,
  87. dbo.tb_ErpOrdersPhotography.Ordpg_Sights AS 拍摄名称,
  88. dbo.fn_CheckPhotographyStatus(Ordpg_PhotographyStatus) AS 拍摄状态,
  89. dbo.fn_CheckDateTimeReturn_Date(dbo.fn_CheckDateTime(Ordpg_ReservationPhotographyTime)) AS 摄影时间,
  90. Ordpg_ReservationPhotographyTime AS 摄影时间查询,
  91. dbo.fn_CheckUserIDGetUserName(dbo.tb_ErpOrdersPhotography.Ordpg_ReservationPhotographyName) AS 摄影师,
  92. dbo.fn_CheckUserIDGetUserName(dbo.tb_ErpOrdersPhotography.Ordpg_ReservationPhotographyAssistant) AS 摄影助理,
  93. dbo.fn_CheckUserIDGetUserName(dbo.tb_ErpOrdersPhotography.Ordpg_ReservationMakeupArtist) AS 化妆师,
  94. dbo.fn_CheckUserIDGetUserName(dbo.tb_ErpOrdersPhotography.Ordpg_ReservationMakeupAssistant) AS 化妆助理,
  95. dbo.fn_CheckUserIDGetUserName(dbo.tb_ErpOrdersPhotography.Ordpg_ReservationBootDivision) AS 引导师,
  96. dbo.tb_ErpOrdersPhotography.Ordpg_Remark AS 录入备注,
  97. dbo.fn_CheckUserIDGetUserName(dbo.tb_ErpOrdersPhotography.Ordpg_Dispatcher) AS 安排人,
  98. dbo.fn_CheckDateTimeReturn_Date(dbo.fn_CheckDateTime(dbo.tb_ErpOrdersPhotography.Ordpg_DispatchTime)) AS 安排时间,
  99. (SELECT COUNT(tb_ErpOrdersPhotography_1.Ordpg_ViceNumber) AS Expr1 FROM dbo.tb_ErpOrdersPhotography AS tb_ErpOrdersPhotography_1 LEFT OUTER JOIN
  100. dbo.tb_ErpOrderDigital AS tb_ErpOrderDigital_1 ON tb_ErpOrdersPhotography_1.Ordpg_ViceNumber = tb_ErpOrderDigital_1.Ordv_ViceNumber WHERE (tb_ErpOrderDigital_1.Ordv_Number = dbo.tb_ErpOrder.Ord_Number)) AS Ord_ViceOrderCount
  101. FROM dbo.tb_ErpOrder LEFT OUTER JOIN
  102. dbo.tb_ErpOrderDigital ON dbo.tb_ErpOrder.Ord_Number = dbo.tb_ErpOrderDigital.Ordv_Number LEFT OUTER JOIN
  103. dbo.tb_ErpOrdersPhotography ON
  104. dbo.tb_ErpOrderDigital.Ordv_ViceNumber = dbo.tb_ErpOrdersPhotography.Ordpg_ViceNumber
  105. left join tempTB_AggregationCustomer on tb_ErpOrder.Ord_Number = GP_OrderNumber
  106. WHERE (dbo.tb_ErpOrder.Ord_Class = ''1'') AND (dbo.tb_ErpOrder.Ord_Type IN (''0'', ''1'', ''2''))
  107. '
  108. GO